home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
tutor
/
pro5
/
vehicle.hpp
< prev
next >
Wrap
Text File
|
1990-07-20
|
341b
|
18 lines
// Chapter 7 - Program 1
// vehicle header file
#ifndef VEHICLEHPP
#define VEHICLEHPP
class vehicle {
int wheels;
float weight;
public:
void initialize(int in_wheels, float in_weight);
int get_wheels(void);
float get_weight(void);
float wheel_loading(void);
};
#endif